home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / DYN401.ZIP / kernel / jumpto / jumpto.nt2 < prev    next >
Text File  |  1995-08-08  |  310b  |  19 lines

  1. /*
  2.     jumpto for the following environment
  3.     
  4.     OS:  NT 3.5 SP 2
  5.     Compiler: Microsoft Visual C++ 2.1
  6.     Copmiler options:  /YX /Otgi /Gfs
  7.                        
  8. */
  9.  
  10. __declspec(naked) void    _jumpToMethod(void (*function) (/* ??? */))
  11. {
  12.     __asm  {
  13.         mov    esp,ebp
  14.         pop    ebp
  15.         jmp    dword ptr [esp-8]
  16.     }
  17.  }
  18.  
  19.